Assignment 12

 

Explore the Fibonacci sequence.

Generate a Fibonnaci sequence in the first column using f(0) = 1, f(1) = 1,
f(n) = f(n-1) + f(n-2)
.

a. Construct the ratio of each pair of adjacent terms in the Fibonnaci sequence. What happens as n increases? What about the ratio of every second term? etc.

b. Explore sequences where f(0) and f(1) are some arbitrary integers other than 1. If f(0)=1 and f(1) = 3, then your sequence is a Lucas Sequence. All such sequences, however, have the same limit of the ratio of successive terms.